home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / exer / chap1 / exer0105 / Shape.java
Encoding:
Text File  |  1997-04-19  |  60 b   |  4 lines

  1. abstract class Shape {
  2.    abstract double perimeter();
  3. }
  4.